home *** CD-ROM | disk | FTP | other *** search
/ Enter 2002 August / EnterCD 8_2002.iso / Internet / Adobe GoLive 6.0 / data1.cab / PF_AppDir_Mod_JScript_GlobalScripts / StyleDepth.scpt < prev    next >
Encoding:
Text File  |  2002-03-28  |  372 b   |  10 lines

  1. function CSSetStyleDepth(s,depth) {
  2.     if (CSIsW3CDOM)document.getElementById(s).style.zIndex=depth;
  3.     else if (IsIE())CSIEStyl(s).zIndex=depth;
  4.     else CSNSStyl(s).zIndex=depth;
  5. }
  6. function CSGetStyleDepth(s) {
  7.     if (CSIsW3CDOM){CSIDOM();return document.getElementById(s).style.zIndex;}
  8.     else if (IsIE())return (CSIEStyl(s).zIndex);
  9.     else return (CSNSStyl(s).zIndex);
  10. }